Above is a screenshot of the current home page that appears when site is opened. I added a link to external weather service to add weather to the RightContentContainer (code below).
<asp:ContentID="RightContent" ContentPlaceHolderID="RightContent" runat="server"><divid="weather"><ahref="http://www.weatherforyou.com/weather/georgia/warner+robins.html"><imgsrc="http://www.weatherforyou.net/fcgi-bin/hw3/hw3.cgi?config=png&forecast=hourly&alt=hwihourly&place=warner+robins&state=ga&country=us&hwvbg=white&hwvtc=FF9900&hwvdisplay="alt="Latest Warner Robins, Georgia, weather"/></a><br/></div>
The Default.aspx page inherits the master page via linking Barnes.Master to the MasterPageFile in the page header.
Since the website is still being develop, I added a cool picture telling any potential customer that the site is not functioning yet. This was handled by added the image to the MainContentContainer (code below).
Home Page (Default.aspx)
Above is a screenshot of the current home page that appears when site is opened. I added a link to external weather service to add weather to the RightContentContainer (code below).
The Default.aspx page inherits the master page via linking Barnes.Master to the MasterPageFile in the page header.
<%@ Page Title="" Language="C#" MasterPageFile="~/Barnes.Master" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="timbarnesengineering.Default" %>Since the website is still being develop, I added a cool picture telling any potential customer that the site is not functioning yet. This was handled by added the image to the MainContentContainer (code below).